home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / lastcall.dxr / 00023_Bar background.ls < prev    next >
Encoding:
Text File  |  2000-03-27  |  534 b   |  33 lines

  1. on mouseDown
  2.   if draggingAnything() then
  3.     replaceDraggingAnything()
  4.   else
  5.     if modifierDown() then
  6.       getAnXbottle()
  7.     end if
  8.   end if
  9. end
  10.  
  11. on rightMouseDown
  12.   if the stage = the activeWindow then
  13.     if draggingAnything() then
  14.       replaceDraggingAnything()
  15.     else
  16.       getAnXbottle()
  17.     end if
  18.   end if
  19. end
  20.  
  21. on mouseEnter me
  22.   if not draggingAnything() then
  23.     showDrinkContents(#thebar)
  24.     refreshHelpWindow(#thebar)
  25.   end if
  26. end
  27.  
  28. on mouseLeave me
  29.   if not draggingAnything() then
  30.     hideToolTip()
  31.   end if
  32. end
  33.